home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / shells / bashsrc.zoo / quit.h < prev    next >
C/C++ Source or Header  |  1991-06-05  |  436b  |  14 lines

  1. /* quit.h -- How to handle SIGINT gracefully. */
  2.  
  3. #ifndef __QUIT__
  4. #define __QUIT__
  5. /* Non-zero means SIGINT has already ocurred. */
  6. extern int interrupt_state;
  7. sighandler throw_to_top_level ();
  8.  
  9. /* Macro to call a great deal.  SIGINT just sets above variable.  When
  10.    it is safe, put QUIT in the code, and the "interrupt" will take place. */
  11. #define QUIT if (interrupt_state) throw_to_top_level ()
  12.  
  13. #endif /* __QUIT__ */
  14.